home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacGames Sampler
/
PHT MacGames Bundle.iso
/
MacSource Folder
/
Samples from the CD
/
C and C++
/
POSIX
/
ThinkCPosix
/
setuid.c
< prev
next >
Wrap
Text File
|
1992-09-15
|
144b
|
19 lines
/* $Id: $ */
#include "ThinkCPosix.h"
int
setuid(uid_t uid)
{
__uid = uid;
return 0;
}
int
setgid(gid_t gid)
{
__gid = gid;
return 0;
}